home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
GAMES
/
KRIS15.ARJ
/
INSTALL.BAT
next >
Wrap
DOS Batch File
|
1992-06-13
|
2KB
|
60 lines
@echo off
cls
echo
echo
echo
if not exist KRIS15B.EXE goto wrongdisk
if not exist INSTALL.BAT goto wrongdisk
goto continue
:wrongdisk
echo This program must be run from the disk and directory containing the KrisKros
echo distribution files shown below:
echo
echo INSTALL.BAT
echo KRIS15B.EXE
echo
echo Log the disk and/or change to the directory containing these files and then
echo run the INSTALL program again.
goto end
:continue
echo This program will extract the KrisKros software into the following directory:
echo
if "%1"=="" echo C:\KRIS
if not "%1"=="" echo %1
echo
echo KrisKros requires approximately 450K of free disk space. Please make sure
echo that you have enough disk space available to complete the installation.
echo
echo If you wish to install KrisKros to a disk and/or directory other than the
echo one shown above, press [Ctrl]-[Break] now to abort this installation process
echo and then type the following:
echo
echo INSTALL d:\dirname
echo
echo Where d is the disk drive letter and dirname is the name of the directory.
echo
echo Press any key now to proceed with the installation described above...
pause > nul
cls
echo
echo
echo
if "%1"=="" goto default
KRIS15B %1
goto status
:default
KRIS15B C:\KRIS
:status
echo
echo
if not errorlevel==1 goto success
echo KrisKros installation failure!
echo
echo Make certain that a valid disk and/or directory has been specified. Also,
echo verify that there is at least 450K of available space on the specified disk.
goto end
:success
echo KrisKros installation successfully completed!
:end
echo